home *** CD-ROM | disk | FTP | other *** search
/ Gospel Library / Infobase setup disc.iso / intro / intro8.dxr / 00194.ls < prev    next >
Encoding:
Text File  |  1998-09-22  |  894 b   |  31 lines

  1. on exitFrame
  2.   if the quickTimePresent = 0 then
  3.     alert("This program requires QuickTime 2.1.2.  Please Install QuickTime and run this program again.")
  4.     if the platform contains "Macintosh" then
  5.       open("QuickTimeΓäó 2.5:QuickTimeΓäó Install Disk 1:Installer")
  6.       halt()
  7.     else
  8.       open("QT32.EXE")
  9.       halt()
  10.     end if
  11.   end if
  12.   cancelpuppets()
  13.   if the colorDepth < 8 then
  14.     alert("Infobases Introductory Library requires your display settings to be 256 color or higher.")
  15.     halt()
  16.   else
  17.     if the colorDepth = 8 then
  18.       play movie "INTRO8.DXR"
  19.     else
  20.       if the colorDepth = 16 then
  21.         go(#next)
  22.       else
  23.         if the colorDepth > 16 then
  24.           alert("Infobases Introductory Library will run better with your display settings on High Color (16-bit or Thousands of Colors)")
  25.           go(#next)
  26.         end if
  27.       end if
  28.     end if
  29.   end if
  30. end
  31.